home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / Alert.h < prev    next >
C/C++ Source or Header  |  1990-11-28  |  477b  |  27 lines

  1. #ifndef Alert_First
  2. #ifdef __GNUG__
  3. #pragma once
  4. #endif
  5. #define Alert_First
  6.  
  7.  
  8. #include "Dialog.h"
  9. #include "Alert_e.h"
  10.  
  11. class Alert: public Dialog {
  12.     VObject *text, *image, *buttons;
  13. public:
  14.     MetaDef(Alert);
  15.  
  16.     Alert(AlertType, byte *text= 0, Bitmap *bm= 0, ...);
  17.     ~Alert();
  18.  
  19.     VObject *DoCreateDialog();
  20.     int Show(char *fmt, ...);
  21.     int ShowV(char *fmt, va_list ap);
  22.     class Menu *GetMenu();
  23.     void InspectorId(char *buf, int sz);
  24. };
  25.  
  26. #endif Alert_First
  27.